/* <!-- Body se shuru kar ke sirf Contact Us section ka full CSS --> */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5; /* Light background rakha hai jaise pehle tha – nav black nahi hoga */
    color: #333;
    line-height: 1.6;
}

/* ========================
   CONTACT US SECTION ONLY
   ======================== */
.contact-section {
    padding: 100px 20px;
    background: #000000; /* Sirf yeh section ka background black */
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

/* Subtle green glow background */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(39,174,96,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(39,174,96,0.5);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #bbb;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 3 Boxes Grid */
.contact-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    padding: 20px;
}

/* Single Box Styling */
.info-box {
    background: linear-gradient(145deg, #111111, #0d0d0d);
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.7);
}

.info-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 90px rgba(39,174,96,0.35);
    border-color: #27ae60;
}

/* Gradient animation on hover */
.info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(39,174,96,0.15) 10%, transparent 40%);
    opacity: 0;
    transition: all 0.8s ease;
}

.info-box:hover::before {
    opacity: 1;
    transform: rotate(20deg) scale(1.3);
}

/* Icons */
.icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    color: #27ae60;
    transition: all 0.4s ease;
}

.info-box:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

/* WhatsApp specific */
.whatsapp-box .icon {
    color: #25D366;
}

.whatsapp-box:hover {
    border-color: #25D366;
    box-shadow: 0 35px 90px rgba(37,211,102,0.35);
}

/* Address specific */
.address-box .icon {
    color: #9b59b6;
}

.address-box:hover {
    border-color: #9b59b6;
    box-shadow: 0 35px 90px rgba(155,89,182,0.35);
}

/* Text */
.info-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.info-box p {
    color: #cccccc;
    margin: 12px 0;
    font-size: 1.2rem;
}

/* Buttons */
.box-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.email-box .box-link {
    background: #3498db;
    color: white;
}

.email-box .box-link:hover {
    background: #2980b9;
    transform: translateY(-4px);
}

.whatsapp-box .box-link {
    background: #25D366;
    color: white;
}

.whatsapp-box .box-link:hover {
    background: #128C7E;
    transform: translateY(-4px);
}

.address-box .box-link {
    background: #9b59b6;
    color: white;
}

.address-box .box-link:hover {
    background: #8e44ad;
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .contact-boxes {
        grid-template-columns: 1fr;
    }
    .info-box {
        padding: 40px 30px;
    }
}

/* Body - Full black background */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 20px;
    background: #000000;
    color: #e0e0e0;
}

/* Container & Title */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    font-size: 3.8rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(39,174,96,0.4);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #bbb;
    margin-bottom: 70px;
}

/* 3 Boxes Grid */
.contact-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    padding: 20px;
}

/* Box Styling */
.info-box {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    position: relative;
    z-index: 1;
}

.info-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(39,174,96,0.35);
    border-color: #27ae60;
}

/* Icons */
.icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: #27ae60;
    transition: all 0.4s ease;
}

.info-box:hover .icon {
    transform: scale(1.2);
}

/* Box Specific Colors */
.whatsapp-box .icon { color: #25D366; }
.address-box .icon { color: #9b59b6; }

/* Text */
.info-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.info-box p {
    color: #cccccc;
    margin: 12px 0;
    font-size: 1.2rem;
}

/* Buttons - 100% Clickable */
.box-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 10; /* Ensures button is on top and clickable */
    cursor: pointer;
}

.email-box .box-link {
    background: #3498db;
}

.whatsapp-box .box-link {
    background: #25D366;
}

.address-box .box-link {
    background: #9b59b6;
}

.box-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .contact-boxes {
        grid-template-columns: 1fr;
    }
    .info-box {
        padding: 40px 30px;
    }
}

.contact-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #000000;
}

/* Box Styling */
.info-box {
    background: #111111;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    position: relative;
}

.info-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(39,174,96,0.35);
    border-color: #27ae60;
}

/* Image Icons (instead of emoji/SVG) */
.icon-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(39,174,96,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.info-box:hover .icon-img {
    transform: scale(1.15);
    background: rgba(39,174,96,0.2);
}

.icon-img img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Text */
.info-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.info-box p {
    color: #cccccc;
    margin: 12px 0;
    font-size: 1.2rem;
}

/* Buttons */
.box-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.email-box .box-link {
    background: #3498db;
}

.whatsapp-box .box-link {
    background: #25D366;
}

.address-box .box-link {
    background: #9b59b6;
}

.box-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .contact-boxes {
        grid-template-columns: 1fr;
    }
}